home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / bbs / fraction / history.nts < prev    next >
Text File  |  1992-01-01  |  3KB  |  78 lines

  1. FFR 3.00 bug fixes / new features
  2.  
  3. 911130  v3.01
  4. -------------
  5. identify.c, check_line()
  6.  
  7.             Changed: return (code[mbnum].codetype+2);
  8.             to:      return ((2 << code[codetype].codetype) + 256);
  9.  
  10.             and      return (code[mbnum].codetype+258);
  11.             to:      return ((2 << code[codetype].codetype) + 256);
  12.  
  13.             Reason: Wrong return-value generated. Marked text wouldn't
  14.                     be extracted...... My own fault: I changed the constant
  15.                     TEXTSTART from 3 to 4..
  16.  
  17. 911201  v3.02
  18. -------------
  19. diverse functions
  20.  
  21.             Got rid of member 'elements' of struct head.
  22.  
  23.             Added new feature in header-checking. Now a header-test in the
  24.             'header-{}'-block may contain more than one format seperated
  25.             by '||'. Only one of the alternate tests in a line has to be
  26.             valid.
  27.  
  28.             Example:
  29.  
  30.             h 2 "~||Received: fro%[m]||Forwarding pat%[h]"
  31.  
  32. 911208  v3.03
  33. -------------
  34. diverse functions in cfg.c, identify.c
  35.  
  36.             Added offset to q, f, n, p and o-definitions in the 'code{}'-
  37.             block. This allows for handling of encoders that have their
  38.             relevant info distributed on several lines, e.g. PENCODE.
  39.  
  40.             Example:
  41.  
  42.             section 1 of 10
  43.             begin 750 test.txt
  44.             ....data line 1 ....
  45.             ....data line n ....
  46.             end
  47.  
  48. 911209
  49. ------
  50.             Added command line options:
  51.             '-cp <path>' write encoded files to specified path.
  52.             '-gp <path>' write general mail to specified path.
  53.             '-pp <path>' write personal mail to specified path.
  54.             '-icp' ignore path for encoded files.
  55.             '-igp' ignore path for general mail.
  56.             '-ipp' ignore path for personal mail.
  57.             '-iap' ignore all paths (same as '-icp -igp -ipp' together).
  58.  
  59.             Addition to config file:
  60.  
  61.             codepath "<path>"  define default path for encoded files.
  62.             genpath "<path>"   dito for general mail.
  63.             perspath "<path>"  dito for personal mail.
  64.  
  65.             Due to popular request (grmpf..):
  66.             Help screen now halts after 24 lines and prompts for keystroke.
  67.  
  68.             Changed the date format in the extension of files to 'MDD'
  69.             instead of 'DDM' (DD = day, M = month in hex). This is better
  70.             when sorting extracted file by their extensions.
  71.  
  72. 911216 v3.04
  73. ------------
  74. kill.c, kill_entries()
  75.  
  76.             search_strings was called with a line count of zero, thus not
  77.             allocating sufficient memory and overwriting the prompt-array.
  78.